home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / opengl / utilities / isfast / libtk / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  382 b   |  31 lines

  1. TARGET = libtk.a
  2.  
  3. CFLAGS = -O
  4.  
  5. OBJECTS = \
  6.     cursor.o \
  7.     event.o \
  8.     font.o \
  9.     getset.o \
  10.     image.o \
  11.     shapes.o \
  12.     window.o
  13.  
  14. $(TARGET): $(OBJECTS)
  15.     rm -f $@
  16.     $(AR) crl $@ $(OBJECTS)
  17.  
  18. cursor.o: tk.h
  19. event.o: tk.h
  20. font.o: tk.h
  21. getset.o: tk.h
  22. image.o: tk.h
  23. shapes.o: tk.h
  24. window.o: tk.h
  25.  
  26. clean:
  27.     -rm -rf *.[ou] a.out core lex.yy.[co] y.tab.[cho] _force
  28.  
  29. clobber: clean
  30.     -rm -rf $(TARGET)
  31.